home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / bc.postrm < prev    next >
Encoding:
Text File  |  2009-10-15  |  603 b   |  27 lines

  1. #! /bin/sh
  2. #
  3. # This is the postrm script for the Debian GNU/Linux bc package
  4. #
  5. # Written by John G. Hasler    
  6. # Previous versions written by Dirk Eddelbuettel, Bill Mitchell, 
  7. # Austin Donnelly and James Troup
  8.  
  9. set -e
  10.  
  11. # Automatically added by dh_installmenu
  12. if [ -x "`which update-menus 2>/dev/null`" ]; then update-menus ; fi
  13. # End automatically added section
  14.  
  15.  
  16. case "$1" in
  17.     purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
  18.      if [ -x /usr/bin/update-menus ]
  19.      then
  20.          update-menus
  21.      fi
  22.         ;;
  23.     *)
  24.     echo "postrm called with unknown argument \`$1'" >&2
  25.     ;;
  26. esac
  27.